var github.com/vmihailenco/msgpack/v5.typeDecMap

12 uses

	github.com/vmihailenco/msgpack/v5 (current package)
		decode_value.go#L49: 	if v, ok := typeDecMap.Load(typ); ok {
		decode_value.go#L53: 	typeDecMap.Store(typ, fn)
		decode_value.go#L61: 		if _, ok := typeDecMap.Load(typ.Elem()); ok {
		ext.go#L119: 	typeDecMap.Store(extID, typ)
		ext.go#L120: 	typeDecMap.Store(typ, extDecoder)
		ext.go#L122: 		typeDecMap.Store(typ.Elem(), makeExtDecoderAddr(extDecoder))
		ext.go#L127: 	t, ok := typeDecMap.Load(extID)
		ext.go#L131: 	typeDecMap.Delete(extID)
		ext.go#L134: 	typeDecMap.Delete(typ)
		ext.go#L136: 		typeDecMap.Delete(typ.Elem())
		types.go#L42: 	typeDecMap sync.Map
		types.go#L54: 		typeDecMap.Store(typ, dec)